From: Stefan Monnier Date: Wed, 2 Feb 2011 15:53:20 +0000 (-0500) Subject: * src/editfns.c (save_restriction_restore): Don't forget to invalidate the X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18^2~69 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=12df40f07f029c47f70a632356c3042b14142b46;p=emacs.git * src/editfns.c (save_restriction_restore): Don't forget to invalidate the current_column cache. --- diff --git a/src/ChangeLog b/src/ChangeLog index 95c702fecd3..8ef209aba2c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2011-02-02 Stefan Monnier + + * editfns.c (save_restriction_restore): Don't forget to invalidate the + current_column cache (bug#7946). + 2011-02-02 Kenichi Handa * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined. diff --git a/src/editfns.c b/src/editfns.c index e8c1aef3503..fe5b039625f 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3347,6 +3347,9 @@ save_restriction_restore (data) } } + /* Changing the buffer bounds invalidates any recorded current column. */ + invalidate_current_column (); + if (cur) set_buffer_internal (cur);